home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Animacje, filmy i prezentacje / Modelowanie 3D / K-3D 0.6.5.0 / k3d-all-in-one-setup-0.6.5.0.exe / aqsis-setup-1.1.0-2006-12-09.exe / include / aqsis / parserstate.h < prev    next >
Encoding:
C/C++ Source or Header  |  2005-12-11  |  1.1 KB  |  46 lines

  1. #ifndef PARSERSTATE_H
  2. #define PATSERSTATE_H
  3.  
  4. #include <map>
  5. #include "bdec.h"
  6.  
  7. namespace librib
  8. {
  9.  
  10. /** Class for storing the state of the parser to be restored when processing
  11.  *  DelayedReadArchive and friends. This is not pretty, ideally we would have
  12.  *  a full OO parser/scanner, doing this in bison/flex is much ugglier. All of
  13.  *  this mess can dissapear if migrated to a Boost/Spirit parser in future.
  14.  */
  15.  
  16. class CqRIBParserState
  17. {
  18.     public:
  19.  
  20.         FILE *m_pParseInputFile;
  21.         std::string m_ParseStreamName;
  22.         CqRibBinaryDecoder *m_pBinaryDecoder;
  23.         std::ostream* m_pParseErrorStream;
  24.  
  25.         RendermanInterface* m_pParseCallbackInterface;
  26.         unsigned int m_ParseLineNumber;
  27.         std::string m_ArchivePath;
  28.  
  29.         RtArchiveCallback m_pArchiveCallback;
  30.         bool m_ParseSucceeded;
  31.         bool m_fRequest;
  32.         bool m_fParams;
  33.         bool m_fRecovering;
  34.  
  35.         void *m_pYY_STATE;
  36. };
  37.  
  38. /// Retrieve the current state of the parser internal variables
  39. CqRIBParserState GetParserState();
  40. /// Retrieve the current state of the parser internal variables
  41. void SetParserState( CqRIBParserState& state );
  42.  
  43. }
  44.  
  45. #endif // PARSERSTATE_H
  46.